[dbo].[BAEOrderProductInsert]
SQLServer
>
iMIS1521GA
>
Stored Procedures
> dbo.BAEOrderProductInsert
Properties
Parameters
SQL Script
Uses
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@Title
varchar(128)
128
@Description
varchar(1024)
1024
@IsSuperProduct
bit
1
@ProductCode
varchar(64)
64
@SellOnWeb
int
4
SQL Script
create
procedure
[dbo]
.
[BAEOrderProductInsert]
@Title
as
varchar
(
128
),
@Description
AS
varchar
(
1024
),
@IsSuperProduct
AS
bit
,
@ProductCode
AS
varchar
(
64
),
@SellOnWeb
AS
int
AS
INSERT
INTO
OrderProduct
(
Title
,
Description
,
IsSuperProduct
,
ProductCode
,
SellOnWeb
)
VALUES
(
@Title
,
@Description
,
@IsSuperProduct
,
@ProductCode
,
@SellOnWeb
);
SELECT
CAST
(
@@IDENTITY
AS
int
)
AS
'InsertedOrderProduct'
;
GO
Uses
[dbo].[OrderProduct]
dbo